126c04f44bf757e6235f2f1e0951c344e241fafc,rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/saaj/SAAJInInterceptor.java,SAAJInInterceptor,handleMessage,#SoapMessage#,73
Before Change
StaxUtils.readDocElements(soapMessage.getSOAPBody(), xmlReader, true);
DOMSource bodySource = new DOMSource(soapMessage.getSOAPPart().getEnvelope().getBody());
xmlReader = StaxUtils.createXMLStreamReader(bodySource);
xmlReader.nextTag();
xmlReader.nextTag(); // move past body tag
message.setContent(XMLStreamReader.class, xmlReader);
} catch (SOAPException soape) {
After Change
} else {
StaxUtils.readDocElements(soapMessage.getSOAPBody(), xmlReader, true);
DOMSource bodySource = new DOMSource(soapMessage.getSOAPPart().getEnvelope().getBody());
xmlReader = StaxUtils.createXMLStreamReader(bodySource);
xmlReader.nextTag();
xmlReader.nextTag(); // move past body tag
}
message.setContent(XMLStreamReader.class, xmlReader);